home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tech Arsenal 1
/
Tech Arsenal (Arsenal Computer).ISO
/
tek-03
/
fglqbx10.zip
/
09-18.BAS
< prev
next >
Wrap
BASIC Source File
|
1991-06-06
|
608b
|
40 lines
REM $INCLUDE: 'fastgraf.bi'
DEFINT A-Z
DIM Bitmap1 AS STRING*32
DIM Bitmap2 AS STRING*32
NewMode = FGbestmode(320,200,1)
IF NewMode < 0 OR NewMode = 12 THEN
PRINT "This program requires a 320 x 200 color graphics mode."
STOP
END IF
OldMode = FGgetmode
FGsetmode NewMode
FGsetcolor 7
FGrect 0, 31, 0, 7
FGsetcolor 9
FGtext "text", 4
FGwaitkey
FGmove 0, 7
FGsetcolor 7
FGgetmap Bitmap1, 4, 8
FGsetcolor 9
FGgetmap Bitmap2, 4, 8
FGmove 4, 15
FGsetcolor 7
FGdrawmap Bitmap1, 4, 8
FGsetcolor 9
FGdrawmap Bitmap2, 4, 8
FGwaitkey
FGsetmode OldMode
FGreset
END